home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 July / CHIP 2006-07.2.iso / program / google / google-browsersync.xpi / chrome / chromeFiles / content / password.xul < prev    next >
Encoding:
Extensible Markup Language  |  2006-06-07  |  999 b   |  29 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <dialog
  5.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.   id="clb-passwordform" title="Google Browser Sync needs your Password" 
  7.   orient="vertical" 
  8.   buttons="accept,cancel"
  9.   onload="return CLB_form.handleDialogLoad()"
  10.   ondialogaccept="return CLB_form.handleDialogAccept()">
  11.  
  12.   <label value="Please re-enter the password for"/>
  13.   <label id="clb-username" style="font-weight:bold" value="[username]"/>
  14.  
  15.   <spacer style="height:0.5em"/>
  16.   <textbox id="clb-password" type="password"/>
  17.   <spacer style="height:0.5em"/>
  18.  
  19.   <description>Google Browser Sync periodically asks 
  20.     for your password to improve security.</description>
  21.  
  22.   <script type="application/x-javascript">
  23.     var CLB_form =
  24.       new (Components.classes["@google.com/browserstate/app-context;1"]
  25.                      .getService().wrappedJSObject)
  26.                      .CLB_PasswordForm(window);
  27.   </script>
  28. </dialog>
  29.